home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu317.dms / pu317.adf / devs / mountlist < prev    next >
Text File  |  1990-06-01  |  3KB  |  114 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler   */
  4.  
  5. NEWCON:      Handler = L:Newcon-Handler
  6.       Priority = 5
  7.       StackSize = 1000
  8. #
  9.  
  10. /*  This is an example of an alternative type of non-filing device mount,
  11.     used to mount the non-buffered serial handler
  12. */
  13.  
  14. AUX:       Handler = L:Aux-Handler
  15.            Stacksize = 6000
  16.            Priority = 5
  17.       GlobVec = -1
  18. #
  19. /*  This is an example of an alternative type of non-filing device mount,
  20.     used to mount the pipe handler
  21. */
  22.  
  23. PIPE:      Handler = L:Pipe-Handler
  24.            Stacksize = 6000
  25.            Priority = 5
  26.       GlobVec = -1
  27. #
  28.  
  29. /* This is an example of a non-filing system mount using a handler written
  30.    in C.
  31. */
  32.  
  33. SPEAKER:   Handler = L:Speak-Handler
  34.            Stacksize = 6000
  35.            Priority = 5
  36.       GlobVec = -1
  37. #
  38.  
  39. /* This is an example of a mount list entry for using the recoverable 
  40.    ram disk.  Depending on the amount of memory you wish to devote to
  41.    it, you may want to change the HighCyl value.
  42. */
  43.  
  44.  
  45. CARD:      Device = ramdrive.device
  46.            Unit   = 0
  47.            Flags  = 0
  48.            Surfaces  = 2
  49.            BlocksPerTrack = 11
  50.            Reserved = 2
  51.            Interleave = 0
  52.            LowCyl = 0  ;  HighCyl = 14
  53.            Buffers = 5
  54.            BufMemType = 1
  55. #
  56.  
  57. /* Mount a 5.25" disk drive to be mounted as DF2: */
  58.  
  59. DF2:       Device = trackdisk.device
  60.            Unit   = 2
  61.            Flags  = 1
  62.            Surfaces  = 2
  63.            BlocksPerTrack = 11
  64.            Reserved = 2
  65.            PreAlloc = 11
  66.            Interleave = 0
  67.            LowCyl = 0  ;  HighCyl = 39
  68.            Buffers = 20
  69.            BufMemType = 3
  70. #
  71.  
  72. /* An example mount entry using the fast file system with a partition
  73.    of the hard disk using the 2090 disk controller.  PREP has been
  74.    used to create the first partition (up to cylinder 20).  The second
  75.    partition is MOUNTed, using the following entry:
  76.    (The hard disk is not included; this is only an example.)
  77. */
  78.  
  79. FAST:      Device = hddisk.device
  80.       FileSystem = l:FastFileSystem
  81.       Unit   = 1
  82.            Flags  = 0
  83.            Surfaces  = 4
  84.            BlocksPerTrack = 17
  85.            Reserved = 2
  86.            Interleave = 0
  87.            LowCyl = 21  ;  HighCyl = 800
  88.            Buffers = 30
  89.       GlobVec = -1
  90.            BufMemType = 1
  91. #
  92.  
  93.  
  94. /* Let's say you have an A2000 with an internal drive, and an external
  95.    drive, and you want to refer to the external drive as DF1: as well
  96.    as DF2:   Well, this MountList entry will do it for you.  This technique
  97.    can be extended to provide you with a drive A: and B: if you really
  98.    want.
  99. */
  100.  
  101. DF1:       Device = trackdisk.device
  102.            Unit   = 2
  103.            Flags  = 1
  104.            Surfaces  = 2
  105.            BlocksPerTrack = 11
  106.            Reserved = 2
  107.            PreAlloc = 11
  108.            Interleave = 0
  109.            LowCyl = 0  ;  HighCyl = 79
  110.            Buffers = 20
  111.            BufMemType = 3
  112. #
  113.  
  114.